home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / GENCSRC.ZIP / INTASIGN.C < prev    next >
C/C++ Source or Header  |  1987-11-21  |  708b  |  23 lines

  1.                                          /* Chapter 4 - Program 1 */
  2. /* This program will illustrate the assignment statements         */
  3.  
  4. main()
  5. {
  6. int a,b,c;    /* Integer variables for examples */
  7.  
  8.    a = 12;
  9.    b = 3;
  10.    c = a + b;          /* simple addition */
  11.    c = a - b;          /* simple subtraction */
  12.    c = a * b;          /* simple multiplication */
  13.    c = a / b;          /* simple division */
  14.    c = a % b;          /* simple modulo (remainder) */
  15.    c = 12*a + b/2 - a*b*2/(a*c + b*2);
  16.    c = c/4+13*(a + b)/3 - a*b + 2*a*a;
  17.    a = a + 1;          /* incrementing a variable */
  18.    b = b * 5;
  19.  
  20.    a = b = c = 20;     /* multiple assignment */
  21.    a = b = c = 12*13/4;
  22. }
  23.